﻿
/*
	Slideshow
*/

/*
#slides {
	position:absolute;
	top:15px;
	left:4px;
	z-index:100;
}
*/
/*
	Slides container
	Important:
	Set the width of your slides container
	Set to display none, prevents content flash
*/

.slides_container {
	overflow:hidden;
	position:relative;
	display:none;
}

/*
	Each slide
	Important:
	Set the width of your slides
	If height not specified height will be set by the slide content
	Set to display block
*/

.slides_container div.slide {
	height:252px;
	display:block;
}


/*
	Next/prev buttons
*/

#slides .next,#slides .prev {
	position:absolute;
	top:107px;
	left:-39px;
	width:24px;
	height:43px;
	display:block;
	z-index:101;
}

#slides .next {
	left:485px;
}

/*
	Pagination
*/

.pagination {
	margin:1px auto 0;
	margin-right:6px;
	/*width:300px;*/
	
}

.pagination li {
	float:right;
	margin:0 1px;
	list-style:none;
	
}

.pagination li a {
	display:block;
	width:12px;
	height:0;
	padding-top:12px;
	background-image:url('/Style Library/XSL Style Sheets/Slider/img/pagination.png');
	background-position:0 0;
	float:left;
	overflow:hidden;
	z-index:5000;
}

.pagination li.current a {
	background-position:0 -12px;
}

/*
	Caption
*/

.caption {
	z-index:500;
	position:absolute;
	bottom:-55px;
	left:0;
	height:78px;
	padding:5px 20px 0 20px;
	width:540px;
	/*background:*/
	font-size:1.0em;
	line-height:1.33;
	color:#fff;
	background-color:#00b3e7;
}

img {
	border:none;
}
